@import url("font-awesome.css");

@font-face {
	font-family: 'SourceHanSansCN-Regular';
	src: url('../fonts/SourceHanSansCN-Regular.eot');
	src: local('☺'), url('../fonts/SourceHanSansCN-Regular.woff') format('woff'), url('../fonts/SourceHanSansCN-Regular.ttf') format('truetype'), url('../fonts/SourceHanSansCN-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

html{
	height: 100%;
	overflow-x: hidden;
}
body{
	height: 100%;
}
body{
	font-family: "SourceHanSansCN-Regular", Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 14px;
	line-height: 1.5;
}
ul,ol,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	color: #333;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
}
a:hover {
	color: #52246f;
	text-decoration: none;
}
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}
section{
	padding: 20px 0;
}
@media (min-width: 768px) {
	body > section {
  		padding: 40px 0;
	}
}
.container{
	width: 100%;
	max-width: 1400px;
}
.img-block img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
/******************
 * 一键置顶
 *****************/
.scrollToTop {
	color: #fff;
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 36px;
	height: 36px;
	text-align: center;
	cursor: pointer;
	background-color: #52246f;
	z-index: 1005;
	display: none;
	border-radius:5px;
}
.scrollToTop i {
	line-height: 36px;
	font-size: 28px;
}
.scrollToTop:hover{
	opacity:0.9;
}

/******************
 * 顶栏
 *****************/
.lang-bar{
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	font-size: 14px;
	margin-top: 10px;
	color: #fff;
}
.lang-bar a{
	display: inline-block;
	line-height: 40px;
	color: #fff;
	margin: 0 10px;
	text-transform: uppercase;
}
.lang-bar a:hover{
	color: #fff;
}
@media (min-width:992px) {
	.lang-bar{
		float: right;
		margin-top: 20px;
	}
}

/******************
 * 导航   *
 *****************/
header{
	background-color:rgba(0,0,0,0.7) ;
}
.fixed{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 9999;
}
.navbar-nav{
	margin-top: 0px;
	margin-bottom: 0px;
}
/* first level menu */
.navbar.navbar-default {
	margin: 5px 0px;
	border: none;
	background-color: transparent;
}
.navbar.navbar-default .navbar-nav{
	background-color: #fafafa;
}
/* first level menu items */
.navbar-default .navbar-nav > li > a {
	text-transform: capitalize;
	font-size: 12px;
	color: #4f4f4f;
	z-index: 102;
}
.navbar-default .navbar-nav > li > a:hover {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	background-repeat: no-repeat;
	background-position: 50% 100%;
}
/* first level active menu items on hover/focus */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
	color: #004097;
	background-color: transparent;
}
/* first level active menu items when opened */
.main-navigation .navbar-nav > .open > a,
.main-navigation .navbar-nav > .open > a:hover,
.main-navigation .navbar-nav > .open > a:focus {
	color: #004097;
	background-color: transparent;
}
/* first level active menu items when clicked */
.main-navigation .navbar-nav > .open > a:active,
.main-navigation .navbar-nav > .open.active > a:active {
	background-color: #ffffff;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #33CC33;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;

}
.main-navigation .navbar-nav > .open > a:active + ul,
.main-navigation .navbar-nav > .open.active > a:active + ul {
	display: none;
}
/* second level menu */
.dropdown-menu {
	min-width: 180px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	background-color: rgba(250,250,250,0.9);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	z-index: 101;
}
/* second level menu items */
.dropdown-menu > li > a {
	padding: 10px 20px;
	font-size: 12px;
	color: #fff;
	border-bottom: 1px solid #eee;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}
/* second level menu items on focus/hover and when opened */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu .menu > .active > a,
.dropdown-menu .menu > .active > a:hover,
.dropdown-menu .menu > .active > a:focus {
	color: #fff;
	background-repeat: no-repeat;
	background-position: 50% 100%;
}
/* third level menu */
.dropdown-menu .dropdown-menu {
	top: -1px;
	left: 100% !important;
	padding-top: 0;
	margin-left: 1px;
	border-left: none;
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
	border-top: 1px solid #f1f1f1;
}
/* dropdown animations */
.animated.main-navigation .open .dropdown-menu,
.open .dropdown-animation {
	-webkit-animation-duration: 0.2s;
	animation-duration: 0.2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUpSmall;
	animation-name: fadeInUpSmall;
}
.open .dropdown-animation {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
}
.animated.main-navigation .dropdown-menu .open .dropdown-menu {
	-webkit-animation-name: fadeInLeftSmall;
	animation-name: fadeInLeftSmall;
}
/* mobile menu toggle button */
.navbar-default .navbar-toggle {
	border: none;
}
/* mobile menu toggle button on hover/focus */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff;
}
.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
	background-color: #fff;
}
.main-navigation .navbar-brand{
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}
.main-navigation .navbar-brand img{
	height: 40px;
}

/****** 2019.5.27 *******/
.mega-menu.dropdown {
	position: static;
}
.mega-menu .dropdown-menu {
	left: 0;
	top: 99%;
	width: 100%;
	padding: 20px 0px;
}
.mega-pic-outer{
	height: auto;
	overflow: hidden;
}
.mega-pic-outer a{
	display: block;
}
.mega-pic-outer .pic{
	height: auto;
	overflow: hidden;
}
.mega-pic-outer .pic img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.mega-pic-outer .title{
	text-align: center;
	font-size: 12px;
	margin-top: 10px;
}
/****** 2019.5.27 *******/

/**** animations **/
@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}
/**** fadeInDownSmall *****/
@-webkit-keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*** fadeInLeftSmall ***/
@-webkit-keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
/* Small devices (tablets, 768px and up) */
@media (min-width:768px) {
	.navbar.navbar-default{

		/*background-color: transparent;
		border-color: transparent;*/
		border-radius: 0px;
		border: none;
	}
	.navbar.navbar-default .navbar-nav{
		float: none;
	}
	/*.navbar-collapse {
		padding-right: 0px;
		padding-left: 0px;
	}*/
	/*.main-navigation .navbar-right .dropdown-menu {
		right: auto;
		left: 0;
	}
	.main-navigation .navbar-right > li:last-child > .dropdown-menu {
		right: 0;
		left: auto;
	}
	.navbar-nav li.dropdown a:hover{
		background: none;
	}*/
	/*.main-navigation .navbar-nav {
		float: right;
	}*/
	.navbar-default .navbar-nav > li{
		float: none;
		display: block;
	}

	/*.navbar-default .navbar-nav > li:before,
	.navbar-default .navbar-nav > li:after{
		display: table;
  		content: " ";
	}
	.navbar-default .navbar-nav > li:after{
		clear: both;
	}*/
	/*.navbar-default .navbar-nav > li > a{
		line-height: 40px;
		padding-left: 2px;
		padding-right: 2px;
	}
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > li > a:hover{
		color: #33cc33;
	}*/
	.main-navigation .navbar-header{
		float: none !important;
	}
	/*.main-navigation .navbar-header .logo{
		float: left;
	}*/
	/*.main-navigation .navbar-brand{
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
		height: 80px;
	}*/
	/*.main-navigation .navbar-brand img{
		height: 50px;
	}*/
	.main-navigation .navbar-toggle{
		display: block;
	}
	.navbar-collapse.collapse{
		display: none !important;
	}
	.collapse.in{
		display: block !important;
	}
}
/* Medium desktop devices */
@media (min-width:992px) {
	.main-navigation .navbar-toggle{
		display: none;
	}
	.navbar-collapse.collapse{
		display: block !important;
	}
	.navbar.navbar-default{
		margin: 0px;
		background-color: transparent;
		border-color: transparent;
		border-radius: 0px;
		border: none;
	}
	.navbar.navbar-default .navbar-nav{
		background-color: transparent;
		float: right;
		margin-top: 0px;
	}
	.navbar-collapse {
		padding-right: 0px;
		padding-left: 0px;
	}
	.main-navigation .navbar-right .dropdown-menu {
		right: auto;
		left: 0;
	}
	.main-navigation .navbar-right > li:last-child > .dropdown-menu {
		right: 0;
		left: auto;
	}
	.navbar-nav li.dropdown a:hover{
		background: none;
	}
	.main-navigation .navbar-nav {
		float: right;
	}
	.navbar-default .navbar-nav > li{
		float: left;
		margin-left: 1px;
	}
	.navbar-default .navbar-nav > li:before,
	.navbar-default .navbar-nav > li:after{
		display: table;
  		content: " ";
	}
	.navbar-default .navbar-nav > li:after{
		clear: both;
	}
	.navbar-default .navbar-nav > li > a{
		color: #fff;
		line-height: 40px;
		padding-left: 15px;
		padding-right: 15px;
		font-size: 14px;
		padding-top: 20px;
		padding-bottom: 20px;
		margin-left: 1px;
		margin-right: 1px;
	}
	.flg-en .main-navigation .navbar-nav > li >a {
		font-size: 12px;
		margin-left: 10px;
		margin-right: 10px;
		padding-left: 0;
		padding-right: 0;
	}
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > li > a:hover{
		color: #fff;
	}
	.navbar-default .navbar-nav > .active > a,
	.navbar-default .navbar-nav > .active > a:hover,
	.navbar-default .navbar-nav > .active > a:focus{
		color: #fff;
	}
	.main-navigation .navbar-nav > .open > a,
	.main-navigation .navbar-nav > .open > a:hover,
	.main-navigation .navbar-nav > .open > a:focus{
		color: #fff;
	}
	.main-navigation .navbar-header{
		float: none !important;
	}
	.main-navigation .navbar-header .logo{
		float: left;
	}
	.main-navigation .navbar-brand{
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
		height: 80px;
	}
	.main-navigation .navbar-brand img{
		height: 50px;
	}
	.dropdown-menu{
		border: none;
		background-color: rgba(0,0,0,0.5);
	}


}
/* Large devices (Large desktops 1200px and up) */
@media (min-width:1200px) {
	.main-navigation .navbar-nav > li >a {
		font-size: 14px;
		margin-left: 10px;
		margin-right: 10px;
	}
	.flg-en .main-navigation .navbar-nav > li >a {
		font-size: 14px;
		margin-left: 10px;
		margin-right: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media (min-width:1430px) {
	.main-navigation .navbar-nav > li >a {
		font-size: 14px;
		margin-left: 15px;
		margin-right: 15px;
		padding-left: 25px;
		padding-right: 25px;
	}
	.flg-en .main-navigation .navbar-nav > li >a {
		font-size: 14px;
		margin-left: 10px;
		margin-right: 10px;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width:992px) {
	.navbar-nav .open .dropdown-menu{
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
		color: #004097;
		background-color: transparent;
	}
	.navbar-default .navbar-nav > li > a {
		border-bottom: 1px solid #f1f1f1;
	}
	.navbar-default .navbar-nav > li:last-child > a {
		border-bottom: 1px solid transparent;
	}
	.main-navigation .navbar-nav > .open > a,
	.main-navigation .navbar-nav > .open > a:hover,
	.main-navigation .navbar-nav > .open > a:focus {
		border-color: #004097;
		-moz-box-shadow: none;
		-o-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-default .navbar-nav > li > a:hover,
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > .active > a:hover,
	.navbar-default .navbar-nav > .active > a:focus {
		color: #004097;
	}
	.navbar-default .navbar-nav .open .dropdown-menu {
		background-color: #ffffff;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a,
	.navbar-default .navbar-nav .open .dropdown-menu .dropdown-header {
		padding: 12px 15px 12px 30px;
		color: #666666;
		border-color: #fafafa;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color: #004097;
	}
	.navbar-nav .open .dropdown-menu .dropdown-menu > li > a {
		padding-left: 40px;
	}
	.navbar-nav .open .dropdown-menu .dropdown-menu .dropdown-menu > li > a {
		padding-left: 60px;
	}
	.dropdown>a:before {
		right: 32px;
	}
	.dropdown .dropdown>a:before {
		right: 36px;
	}
}
/******************
 * 顶部弹出搜索表单
 *****************/
.top-search{
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
}
.top-search > .btn{
	border: none;
	width: 40px;
	height: 40px;
	background-color: transparent;
	padding: 0px;
	line-height: 34px;
	box-shadow: none;
	text-align: center;
}
.top-search > .btn:focus{
	outline: none;
}
.top-search > .btn > i{
	font-size: 24px;
	color: #fff;
}
.top-search > .dropdown-menu{
	padding: 15px;
	background-color: #fcfcfc !important;
	position: relative;
	width: 100%;
	display: block;
}
.top-search .dropdown-menu .form-group{
	margin-bottom: 0px;
}
.top-search .dropdown-menu .form-group .form-control-feedback{
	line-height: 34px !important;
}
.top-search .dropdown-menu .form-group .form-control:focus{
	border-color: #ddd;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, .6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, .6);
}
@media (min-width:768px) {
	.top-search{
		padding-top: 20px;
		padding-bottom: 20px;
		margin-left: 10px;
	}
	.top-search > .dropdown-menu{
		min-width: 300px;
	}
	.top-search .has-feedback .form-control{
		padding-right: 40px;
	}
}
@media (min-width:992px) {
	.top-search{
		padding-top: 24px;
		padding-bottom: 16px;
		float: right;
		margin-top: 0;
		margin-bottom: 0;
	}
	.top-search > .dropdown-menu{
		position: absolute;
		display: none;
	}
	.top-search.open > .dropdown-menu{
		display: block;
	}
}

/******************
 * 幻灯样式   *
 *****************/
.section-banner{
	padding: 0;
	position: relative;
}
/******************
 * 底部和版权
 *****************/
footer{
	display: block;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #333333;
}
.col-foot-x1,
.col-foot-x2,
.col-foot-x3{
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	float: left;
}
.col-foot-x1{
	width: 100%;
}
.col-foot-x2{
	width: 100%;
}
.col-foot-x3{
	width: 100%;
}
.foot-wechat{
	height: auto;
	overflow: hidden;
	text-align: center;
	padding-top: 15px;
}
.foot-wechat img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.foot-title{
	color: #fff;
	font-size: 20px;
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}
.foot-title2{
	color: #fff;
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	text-transform: uppercase;
}
/*
.foot-title i{
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 10px;
	cursor: pointer;
	font-size: 12px;
}
.foot-title i:before{
	content: "";
	width: 16px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
}
.col-foot-x1 .foot-title i:after{
	content: "";
	width: 1px;
	height: 16px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -8px;
	transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3s;
	-moz-transition: all ease-in-out .3s;
	-ms-transition: all ease-in-out .3s;
}
.col-foot-x1.cur .foot-title i:after{
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
} */
.foot-inner{
	height: auto;
	overflow: hidden;
	display: none;
	margin: 10px 0;
}
.foot-list{
	overflow: hidden;
}
.foot-list li{
	padding: 6px 0;
	font-size: 14px;
	line-height: 1.25;
}
.foot-list li a{
	color: #fff;
}
.foot-list li a:hover{
	color: #fff;
}
.foot-contact-info{
	font-size: 14px;
	line-height: 30px;
	color: #999999;
	word-break: break-all;
}
.foot-contact-info a{
	color: #999;
}
.foot-contact-info a:hover{
	color: #fff;
}
.foot-social{
	height: auto;
	overflow: hidden;
	margin-top: 30px;
	text-align: center;
}
.foot-social ul li{
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin: 0 3px;
	color: #fff;
}
.foot-social ul li a{
	display: inline-block;
	text-align: center;
}
.foot-social ul li span{
	font-size: 20px;
	line-height: 32px;
}
.foot-social ul li a img{
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
}

.full-copyright{
	background-color: #333;
	padding: 0;
}
.copyright{
	color: #666;
	font-size: 14px;
	line-height: 2;
	text-align: center;
	padding: 10px 0;
}
.foot-form-wrap{
	height: auto;
	overflow: hidden;
}
.foot-form{
	height: auto;
	overflow: hidden;
	margin-top: 15px;
	margin-bottom: 15px;
	position: relative;
	text-align: center;
}
.foot-form-half{
	width: 50%;
	float: left;
}
.foot-form-half.pad-rt{
	padding-right: 6px;
}
.foot-form-half.pad-lt{
	padding-left: 6px;
}
.foot-form input{
	display: block;
	width: 100%;
	height: 42px;
	line-height: 42px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #474747;
	border: none;
	color: #999999;
	font-size: 14px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.foot-form textarea{
	display: block;
	width: 100%;
	height: 120px;
	line-height: 24px;
	padding: 6px 10px;
	background-color: #474747;
	border: none;
	color: #999999;
	font-size: 14px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.foot-form button{
	display: inline-block;
	height: 42px;
	text-align: center;
	line-height: 42px;
	font-size: 14px;
	color: #fff;
	border: none;
	background-color: #52246f;
	border-radius: 21px;
	-webkit-border-radius: 21px;
	-moz-border-radius: 21px;
	padding: 0 50px;
	text-transform: uppercase;
}
@media (min-width:768px) {
	/* footer{
		padding-top: 40px;
		padding-bottom: 15px;
	} */
	.col-foot-x1{
		width: 37%;
	}
	.col-foot-x2{
		width: 26%;
	}
	.col-foot-x3{
		width: 37%;
	}
	/* .foot-title{
		font-size: 16px;
		border-bottom: none;
		margin-bottom:20px;
		padding-bottom: 10px;
	} */
	/* .foot-title i{
		display: none;
	}
	.foot-title:after{
		width: 20px;
		height: 2px;
		background-color: #004097;
		position: absolute;
		left: 0;
		bottom: 0;
	} */
	/* .foot-inner{
		display: block !important;
	}
	.foot-list li{
		font-size: 14px;
	} */
}
@media (min-width:992px) {
	.col-foot-x1{
		width: 37%;
	}
	.col-foot-x2{
		width: 26%;
	}
	.col-foot-x3{
		width: 37%;
	}
	.copyright{
		text-align: left;
	}
}
@media (min-width:1200px) {
	.col-foot-x1{
		width: 37%;
	}
	.col-foot-x2{
		width: 26%;
	}
	.col-foot-x3{
		width: 37%;
	}
}
/******************
 * owl滚动
 *****************/
.owl-wrap{
	height: auto;
	overflow: hidden;
	position: relative;
}
.owl-wrap a{
	display: block;
}
.owl-pic{
	overflow: hidden;
}
.owl-carousel .owl-stage-outer{
	z-index: 15;
}
.owl-product .owl-controls{
	position: relative;
	height: auto;
	margin-top: 20px;
	margin-bottom: 0px;
}
.owl-product.owl-theme .owl-controls .owl-nav div{
	width: 20px;
	height: 30px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 0px;
	background-color: #939393;
	text-align: center;
	line-height: 30px;
	margin: 0px;
	position: absolute;
	top: 0;
	font-size: 0px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.owl-product.owl-theme .owl-controls .owl-nav div.owl-prev{
	background-image: url(../images/prev.png);
	left: 50%;
	margin-left: -25px;
}
.owl-product.owl-theme .owl-controls .owl-nav div.owl-next{
	background-image: url(../images/next.png);
	right: 50%;
	margin-right: -25px;
}
.owl-theme .owl-dots .owl-dot span{
	width: 10px;
	height: 10px;
	background-color: #000;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	filter: Alpha(Opacity=100);
	opacity: 1;
	margin: 0 10px;
}
.owl-theme .owl-dots .owl-dot.active span{
	background-color: #3373cb;
}
@media (min-width:768px) {
	.owl-zs .owl-controls{
		width: 100%;
		position: absolute;
		left: 0px;
		top: 40%;
		margin-top: -15px;
		z-index: 10;
	}
	.owl-zs.owl-theme .owl-controls .owl-nav div.owl-prev{
		left: -30px;
	}
	.owl-zs.owl-theme .owl-controls .owl-nav div.owl-next{
		right: -30px;
	}
}

/******************
 * 服务项目
 *****************/
.section-service{
	background-color: #fbf8fc;
}
.service-top-en{
	text-align: center;
	position: relative;
	color: #cfcdcf;
	font-size: 36px;
	text-transform: uppercase;
	line-height: 1.25;
	font-weight: bold;
}
.service-top-cn{
	text-align: center;
	position: relative;
	color: #52246f;
	font-size: 20px;
	text-transform: uppercase;
	line-height: 1.25;
	margin-bottom: 40px;
	font-weight: bold;
	background-image: url(../images/an_03.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	padding-bottom: 20px;
	margin-top: -1.2em;
}
.about-pic{
	height: auto;
	overflow: hidden;
	margin-bottom: 15px;
}
.about-pic img{
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
}
.about-webname{
	color: #52246f;
	margin-bottom: 25px;
	font-size: 24px;
}
.about-intro{
	color: #666;
	font-size: 14px;
	line-height: 2.5;
	margin-bottom: 30px;
}
.about-more{
	text-align: center;
}
.about-more a{
	display: inline-block;
	width: 64px;
	height: 64px;
	text-align: center;
	line-height: 64px;
	background-color: #fff;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	box-shadow: 0 0 20px rgba(82,36,111,0.5);
}
.about-more span{
	display: inline-block;
	line-height: 64px;
	font-size: 36px;
}
.about-more a:hover{
	color: #fff;
	background-color: #52246f;
}

@media (min-width:768px) {
	.service-top-en{
		font-size: 58px;
	}
	.service-top-cn{
		font-size: 30px;
	}
	.about-webname{
		font-size: 28px;
	}
	.about-pic{
		margin-bottom: 0;
	}
}
@media (min-width:992px) {
	.service-top-en{
		font-size: 64px;
	}
	.service-top-cn{
		font-size: 36px;
	}
	.about-webname{
		font-size: 30px;
	}
	.about-intro{
		font-size: 16px;
	}
}
@media (min-width:1200px) {
	.service-top-en{
		font-size: 92px;
	}
	.service-top-cn{
		font-size: 48px;
	}
	.about-webname{
		font-size: 34px;
	}
}

/******************
 * 服务项目
 *****************/
.section-test{
	background-color: #fff;
}
.ys-item{
	height: auto;
	overflow: hidden;
	position: relative;
	padding-top: 20px;
}

.ys-item .box{
	width: 70px;
	height: 70px;
	margin: 0 auto 30px auto;
	border: 1px solid #e5e5e5;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: relative;
	border-radius: 50%;
}
.ys-item .box .pic{
	width: 70px;
	height: 70px;
	overflow: hidden;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.ys-item .box .pic img{
	display: block;
	width: 70px;
	height: 70px;
}
.ys-item .title{
	text-align: center;
	color: #666666;
	font-size: 16px;
	line-height: 1.5;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 20px;
}
.ys-item .title:after{
	width: 40px;
	height: 2px;
	background-color: #b0b0b0;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	bottom: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.ys-item .intro{
	color: #999999;
	font-size: 14px;
	line-height: 2;
	text-align: center;
	margin-bottom: 20px;
}
.ys-item:hover .box{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	border-color: #52246f;
}
.ys-item:hover .box .pic{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}
.ys-item:hover .title{
	color: #52246f;
}
.ys-item:hover .title:after{
	background-color: #52246F;
}

@media (min-width:992px) {
	.ys-item .title{
		font-size: 18px;
	}
}

/******************
 * 服务项目
 *****************/
.section-cert{
	/* background-image: url(../images/an_06.jpg);
	background-repeat: no-repeat;
	background-position: 50% 0; */
}
.index-pro-nav{
	text-align: center;
	margin-bottom: 30px;
}
.index-pro-nav a{
	display: inline-block;
	margin: 0 20px;
	font-size: 18px;
}
#cprow.row{
	margin-left: -6px;
	margin-right: -6px;
}
#cprow.row .cp-item{
	padding-left: 6px;
	padding-right: 6px;
	min-height: 1px;
	position: relative;
	float: left;
}
#cprow.row .cp-item{
	width: 50%;
}
#cprow.row .cp-item .inbox{
	height: auto;
	position: relative;
}
#cprow.row .cp-item .inbox a{
	display: block;
}
#cprow.row .cp-item .inbox .box{
	height: auto;
	overflow: hidden;
	position: relative;
	background-color: #fff;
	-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
}
#cprow.row .cp-item .inbox .box .pic{
	height: auto;
	overflow: hidden;
	position: relative;
	border: 1px solid #ddd;
	border-radius: 5px;
}
#cprow.row .cp-item .inbox .box .pic img{
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
}
#cprow.row .cp-item .inbox .box .cover{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(82,36,111,0.5);
	background-image: url(../images/an_05.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0;
	visibility: hidden;

	-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;

}
#cprow.row .cp-item .inbox .box .cover:after{
	content: "";
	width: 90%;
	height: 90%;
	border: 1px solid #fff;
	position: absolute;
	left: 5%;
	top: 5%;
	right: 5%;
	bottom: 5%;
}
#cprow.row .cp-item .inbox .title{
	height: 66px;
	line-height: 66px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
	font-size: 14px;
}

.video-img{
	height: auto;
	overflow: hidden;
	position: relative;
	margin-top: 40px;
	cursor: pointer;
}
.video-img img,
.video-img video{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.video-overlay{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9998;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
}
.video-overlay.vd-show{
	opacity: 1;
	visibility: visible;
}
.video-fixed-bg{
	width: 80%;
	/* max-width: 480px; */
	height: 100%;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	/* background-color: rgba(0,0,0,0.3); */
	opacity: 0;
	visibility: hidden;
	margin: 0 auto;
}
.video-fixed-bg.vd-show{
	opacity: 1;
	visibility: visible;
}
.video-box{
	margin: 0 auto;
	/* max-width: 480px; */
	width: 80%;
	height: auto;
	overflow: hidden;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 1005;
}
.video-box video{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
body.hiddenss{
	overflow: hidden;
}
@media (min-width:768px) {
	#cprow.row .cp-item{
		width: 50%;
	}
}
@media (min-width:992px) {
	#cprow.row .cp-item{
		width: 25%;
	}
	#cprow.row .cp-item .inbox .title{
		font-size: 16px;
	}
	#cprow.row .cp-item .inbox:hover .box{
		box-shadow: 0 0 16px rgba(82,36,111,0.5);
		-webkit-box-shadow: 0 0 16px rgba(82,36,111,0.5);
	}
	#cprow.row .cp-item .inbox:hover .box .cover{
		opacity: 1;
		visibility: visible;
	}
	#cprow.row .cp-item .inbox:hover .box .pic img{
		transform: scale(1.15);
		-webkit-transform: scale(1.15);
		-moz-transform: scale(1.15);
		-ms-transform: scale(1.15);
	}
}
@media (min-width:1200px) {
	#cprow.row .cp-item{
		width: 25%;
	}
	#cprow.row .cp-item .inbox .title{
		font-size: 18px;
	}
}

/******************
 * 新闻资讯
 *****************/
.section-news{
	background-color: #fff;
}
.partner-big-pic{
	height: auto;
	overflow: hidden;
}
.partner-big-pic img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.hotline-title{
	text-align: left;
	font-size: 14px;
	margin-top: 20px;
	color: #fff;
}
.hotline-tel{
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	margin-top: 10px;
}

@media (min-width:768px) {
	.hotline-tel{
		font-size: 20px;
	}
	.hotline-title{
		font-size: 18px;
	}
}
@media (min-width:992px) {
	.hotline-tel{
		font-size: 24px;
	}
	.hotline-title{
		font-size: 18px;
	}
}
@media (min-width:992px) {
	.hotline-tel{
		font-size: 24px;
	}
}

/******************
 * Products
 *****************/
.section-product{
	background-color: #f8f8f8;
}
.product-head{
	text-align: center;
	color: #000000;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 30px;
	background-image: url(../images/byt_21.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	padding-bottom: 15px;
}

@media (min-width:768px) {
	.product-head{
		font-size: 30px;
	}
}
@media (min-width:992px) {
	.product-head{
		font-size: 36px;
	}
}
@media (min-width:1200px) {
	.product-head{
		font-size: 40px;
	}
}

/*** grid css ***/
.grid {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	list-style: none;
	text-align: center;
}
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0;
	max-width: 100%;
	width: 100%;
	background: #333;
	text-align: center;
	cursor: pointer;
}
.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
}
.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}
.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: normal;
}
.grid figure h2,
.grid figure p {
	margin: 0;
}
.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}
/*---------------*/
/***** Chico *****/
/*---------------*/
figure.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
figure.effect-chico:hover img {
	opacity: 0.2;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico figcaption {
	padding: 5px;
}
figure.effect-chico h2 {
	padding-top: 25%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
	font-size: 12px;
	opacity: 0;
}
figure.effect-chico p {
	padding: 10px 15px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
	font-size: 12px;
}
figure.effect-chico figcaption::before,
figure.effect-chico figcaption::after {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
figure.effect-chico figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}
figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico:hover h2,
figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* end */

/******************
 * 内页代码
 *****************/
/* 内页Banner */
.inner-banner{
	width: 100%;
}
.section-inner{
	background-color: #eee;
}
.photo-box{
	height: auto;
	overflow: hidden;
}
.photo-box a{
	display: block;
}
.photo-box .photo-pic{
	height: auto;
	overflow: hidden;
	border: 1px solid #ddd;
	padding: 5px;
}
.photo-box .photo-pic img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.photo-box .photo-title{
	text-align: center;
	height: 44px;
	line-height: 44px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.xinwen-outer{
	height: auto;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}
.xinwen-outer a{
	display: block;
}
.xinwen-outer .xinwen-title{
	font-size: 20px;
}
.xinwen-outer .xinwen-intro{
	color: #666;
	font-size: 14px;
	margin-top: 15px;
	line-height: 2;
}
.xinwen-outer .xinwen-time{
	margin-top: 15px;
	color: #999;
}

/* 侧边导航 */
.min-nav{
	position: relative;
	background-color: #005aaa;
}
.mobile-head{
	color: #fff;
	font-size: 16px;
	float: left;
	text-transform: uppercase;
	padding-top: 13px;
	padding-left: 15px;
	word-spacing: 3px;
}
.min-tabs{
	background-color: #FFFFFF;
	padding: 0;
	position: relative;
	margin-top: 0px;
}
.min-tabs ul li{
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
	height: auto !important;
}
.min-tabs ul li a{
	display: block;
	background-color: #F5F5F5;
	font-size: 13px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 15px;
	color: #000;
	position: relative;
}
.min-tabs ul li a:hover{
	color: #33cc33;
}
.min-tabs ul li a i{
	padding-right: 10px;
	font-size: 16px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.min-tabs ul li a:hover i{
	padding-right: 15px;
}
.min-tabs ul li a.active{
	color: #33cc33;
}
.min-tabs > ul > li.dropdown > a::after{
	content: "\f196";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 9px;
	top: 13px;
}
.min-tabs > ul > li.dropdown.open > a::after{
	content: "\f147";
}
.min-tabs .dropdown-menu{
	width: 100% !important;
	position: relative;
}
.min-tabs ul li a:focus{
	/*background-color: #323638;*/
}
.min-tabs > ul > li.dropdown.open > a{
	/*background-color: #323638;*/
}
.min-tabs > ul > li >ul > li{
	border-top: none;
	border-bottom: none;
}
.min-tabs > ul > li > ul > li a{
	/*background-color: #d4d3d3;*/
	color: #333;
	text-transform: none;
}
.min-tabs > ul > li > ul > li a:hover{
	background-color: #fafafa;
	color: #CC0000;
}
.min-nav .icon-bar{
	border-color: #FFFFFF;
	background-color: #FFFFFF;
}
@media (min-width:768px) {
	.mobile-head{
		padding-left: 15px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.min-tabs.collapse{
		display: block !important;
		height: auto !important;
	}
}
/* 右边主体 */
.main-top{
	padding-top: 10px;
	padding-left: 0;
	margin-top: 10px;
	border-bottom: 1px solid #DDDDDD;
}
.main-top span{
	display: inline-block;
	float: left;
	color: #33cc33;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	padding-left: 5px;
}

.main-content{
	padding: 20px;
	background-color: #FFFFFF;
	margin-top: 20px;
	border: 1px solid #EEEEEE;
	border-radius: 5px;
}
.content-body{
	color: #444444;
	font-size: 14px;
	line-height: 2;
}
.content-body img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
@media (min-width:768px) {
	.main-top{
		padding-top: 10px;
		padding-bottom: 10px;
		margin-top: 0px;
	}
}
/** 联系我们 **/
.contact-form{
	margin-top: 25px;
}
.contact-form .btn-primary{
	font-size: 14px;
	background-color: #33cc33;
	padding-left: 30px;
	padding-right: 30px;
	border: none;
}
/*新闻列表*/
.news-list{
	background-color: #FFFFFF;
	margin-top: -15px;
}
.news-list ul li{
	height: auto;
	overflow: hidden;
	border-bottom: 1px dashed #DDDDDD;
	padding: 15px 0;
}
.news-list ul li a{
	display: block;
}
.news-title{
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 5px;
}
.new-brief{
	color: #999;
	font-size: 12px;
}
.news-pic{
	width: 100%;
}
.news-pic img{
	display: block;
	max-width: 100%;
}
@media (min-width:768px) {
	.news-title{
		margin-top: 0px;
		font-size: 16px;
	}
}
/* 新闻正文 */
.rel-title{
	text-align: center;
	font-size: 20px;
	margin-bottom: 10px;
}
.rel-date{
	text-align: center;
	color: #adadad;
	border-top: 1px dashed #ADADAD;
	padding: 10px 0;
	margin-bottom: 15px;
}
/*---------------*/
/**** product ****/
/*---------------*/
.pro-item{
	margin-bottom: 30px;
}
.pro-item a{
	display: block;
	border: 1px solid #D9D9D9;
}
.pro-pic{
	overflow: hidden;
}
.pro-pic img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.pro-title{
	font-size: 14px;
	line-height: 40px;
	margin-top: 10px;
	border-top: 1px solid #D9D9D9;
	padding-left: 15px;
	padding-right: 60px;
	height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.pro-title i{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	float: right;
	height: 40px;
	line-height: 40px;
	border-left: 1px solid #D9D9D9;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.pro-info{
	font-size: 12px;
	color: #888888;
	margin-bottom: 20px;
	margin-top: 10px;
}
.pro-in-title{
	color: #000;
	font-size: 16px;
	line-height: 1.2;
	margin-top: 15px;
}
.pro-in-info{
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.75;
	color: #666666;
}
@media (min-width:768px) {
	.pro-in-title{
		margin-top: 0px;
	}
}

/** tabs codes
 * ==================================
 * **/
.tabs-wrap{
	margin-top: 20px;
}
.tabs-wrap .accordion-handle.active{
	background-color: #52246f;
}
.tabs-wrap .tabs-container{
	margin-top: 5;
}
.tabs-wrap .tab-content{
	color: #666666;
	line-height: 2;
	font-size: 14px;
}
.tabs-wrap .tab-content img{
	max-width: 100%;
	height: auto;
}
.tabs-wrap .tabs-list li a i{
	padding-left: 10px;
	color: #f26522;
}
@media (min-width:768px) {
	.tabs-wrap .tabs-list li{
		margin-right: 2px;
		padding: 0;
		list-style: none;
		margin-left: 0;
		float: left;
	}
	.tabs-wrap .tabs-list li a:hover{
		background-color: #52246f;
		color: #FFFFFF;
	}
	.tabs-wrap .tabs-list li.active a{
		background-color: #52246f;
	}
	.tabs-wrap .tabs-list li a:hover i{
		color: #FFFFFF;
	}
}

.quo-head{
	color: #000000;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	margin-bottom: 15px;
}
.fm-wap label{
	font-size: 14px;
	color: #888;
	font-weight: normal;
}
.fm-wap .btn-primary{
	padding-left: 40px;
	padding-right: 40px;
	margin-top: 10px;
	background-color: #2a9bd5;
	border: none;
	text-transform: uppercase;
	-webkit-transition: all ease-in-out 300ms;
	   -moz-transition: all ease-in-out 300ms;
		-ms-transition: all ease-in-out 300ms;
			transition: all ease-in-out 300ms;
}
.fm-wap .btn-primary:hover{
	background-color: #e90202;
}
.shijian{
	margin-top: 6px;
	color: #ADADAD;
}

@media (min-width: 768px) {
	.quo-head{
		font-size: 30px;
	}
}
@media (min-width: 992px) {
	/* index support */
	.spt-row.row{
		margin-left: -20px;
		margin-right: -20px;
	}
	.spt-row .col-md-4{
		padding-left: 20px;
		padding-right: 20px;
	}
	/* end */
	/* index contact */
	.index-cnt{
		font-size: 18px;
	}
	/* end */
	/* 路径导航 */
	.innerpath.breadcrumb{
		float: right;
		margin-bottom: 0px;
		background-color: transparent;
		padding: 0;
		margin-right: 15px;
	}
	.innerpath.breadcrumb li{
		font-size: 14px;
	}
	/* end */
}
@media (min-width: 1200px) {
	/* index support */
	.spt-row.row{
		margin-left: -40px;
		margin-right: -40px;
	}
	.spt-row .col-md-4{
		padding-left: 40px;
		padding-right: 40px;
	}
	/* end */
}

/******************
 * 内页代码,宽屏代码
 *****************/
.full-path .breadcrumb{
	background-color: transparent;
	padding: 0px;
}
.full-path .breadcrumb li i{
	padding-right: 10px;
	font-size: 16px;
	color: #33cc33;
}
.full-main{
	background-color: #FFFFFF;
	padding: 20px;
}
.full-name{
	color: #33cc33;
	font-size: 16px;
	font-weight: bold;
}
.full-content{
	margin-top: 25px;
	line-height: 2;
}
.full-content img{
	max-width: 100%;
	margin: 0 auto;
	display: block;
	margin-bottom: 15px;
}
.full-content video,
.full-content embed{
	max-width: 100%;
	height: auto;
}

.full-news-list{
	overflow: hidden;
}
.full-news-list ul li{
	padding: 20px 0;
	border-bottom: 2px solid #DDDDDD;
	position: relative;
	margin-top: 20px;
}
.full-news-list ul li:after{
	width: 0px;
	height: 2px;
	background-color: #33cc33;
	position: absolute;
	left: 0px;
	bottom: -2px;
	transition: all ease-in-out 0.6s;
	-webkit-transition: all ease-in-out 0.6s;
	-moz-transition: all ease-in-out 0.6s;
	-ms-transition: all ease-in-out 0.6s;
}
.full-news-list ul li:hover:after{
	width: 100%;
}
.full-news-list ul li a{
	display: block;
}
.full-news-pic{
	width: 220px;
	float: left;
}
.full-news-rt{
	margin-left: 240px;
}
.full-news-ttl{
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	font-size: 16px;
}
.full-news-intro{
	margin-top: 5px;
	color: #666666;
}
.full-date{
	margin-top: 10px;
	font-size: 12px;
	color: #999999;
}
.full-date i{
	padding-right: 10px;
}
.full-news-title{
	text-align: center;
	font-size: 16px;
	color: #000000;
	margin-top: 20px;
}
.full-news-other{
	text-align: center;
	color: #999999;
	font-size: 12px;
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 15px;
	margin-top: 5px;
}
.full-product-item{
	position: relative;
	margin-bottom: 30px;
	padding: 10px;
	background-color: #FFFFFF;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
  	transform: translateZ(0);
  	-webkit-transition-duration: 0.3s;
  	transition-duration: 0.3s;
  	-webkit-transition-property: transform;
  	transition-property: transform;
  	border: 1px solid #EEEEEE;
  	padding: 10px;
}
.full-product-item:hover{
	-webkit-box-shadow:0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow:0 10px 20px rgba(0, 0, 0, 0.1);

  	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
  	transform: translateY(-5px);
}
.full-product-item a{
	display: block;
}
.full-product-name{
	text-align: center;
	font-size: 16px;
	padding-top: 15px;
	margin-top: 10px;
	border-top: 1px solid #EEEEEE;
}
.full-product-brief{
	text-align: center;
	font-size: 12px;
	color: #666666;
	margin-bottom: 15px;
	margin-top: 5px;
	height: 24px;
	line-height: 24px;
	overflow: hidden;
}
.full-product-sort{
	color: #52246f;
	font-size: 16px;
	margin-bottom: 20px;
}
.full-product-title{
	color: #000;
	font-size: 20px;
	margin-top: 15px;
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 20px;
}
.full-product-intro{
	margin-top: 20px;
	font-size: 14px;
	color: #666666;
	line-height: 2;
}
.product-to-buy{
	margin-top: 40px;
	font-size: 0;
}
.product-to-buy a{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	background-color: #004097;
	background-image: url(../images/icon_zx.png);
	background-repeat: no-repeat;
	background-position: 15px 50%;
	color: #FFFFFF;
	font-size: 16px;
	padding: 0 30px 0 50px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	margin: 10px 10px 10px 0;
}
.full-video-content{
	margin-top: 20px;
}
.full-video-content iframe,
.full-video-content embed{
	display: block;
	width: 90%;
	height: 260px;
	margin: 0 auto;
}
.full-news-name{
	font-size: 16px;
	padding: 0 10px;
	border-top: 1px solid #DDDDDD;
	padding-top: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.full-news-brief{
	font-size: 12px;
	color: #777;
	line-height: 20px;
	max-height: 40px;
	overflow: hidden;
	margin-top: 10px;
	padding: 0 10px;
}
.full-news-time{
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 2;
	color: #AAAAAA;
	padding: 0 10px;
}
.full-news-time span{
	display: inline-block;
}
.full-news-time span i{
	padding-right: 5px;
}
.full-news-time span.news-time-left{
	float: left;
}
.full-news-time span.clicks{
	float: right;
}
@media (min-width: 768px) {
	.full-video-content iframe,
	.full-video-content embed{
		height: 350px;
	}
}
@media (min-width: 768px) {
	.full-video-content iframe,
	.full-video-content embed{
		height: 400px;
	}
}
@media (min-width: 1200px) {
	.full-video-content iframe,
	.full-video-content embed{
		height: 500px;
	}
}

.full-sort{
	background-color: #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
	padding: 25px 0;
}
.full-sort-list{
	position: relative;
}
.full-sort-list ul li{
	float: left;
	display: inline-block;
	margin: 5px 15px 5px 0;
}
.full-sort-list ul li a{
	display: inline-block;
	border: 1px solid #DDDDDD;
	padding: 10px 30px;
}
.full-sort-list ul li a:hover,
.full-sort-list ul li a.active{
	color: #FFFFFF;
	background-color: #52246f;
	border-color: #52246f;
}
.white-box-wrap{
	background-color: #FFFFFF;
	padding: 30px;
}
.full-sort-title{
	color: #000000;
	font-size: 30px;
	text-align: center;
}
.full-line{
	height: 0;
	border-top: 1px solid #DDDDDD;
	margin: 40px 0;
}
.full-content{
	margin-top: 25px;
	line-height: 2;
}
.full-content img{
	max-width: 100%;
	margin: 0 auto;
	display: block;
}
.full-content-title{
	text-align: center;
	color: #333;
	font-size: 20px;
}
.full-contact-title{
	color: #333333;
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.full-contact-title:after{
	width: 30px;
	height: 1px;
	background-color: #004097;
	position: absolute;
	left: 0;
	bottom: 0;
}
.full-iframe{
	margin-bottom: 20px;
}
.full-iframe iframe{
	width: 100%;
	height: 450px;
	border: none;
}
.full-contact-content{
	color: #565656;
	font-size: 14px;
	line-height: 2;
	margin-bottom: 20px;
}

.section-soldeeee{
	padding: 30px 0;
	background-color: #FFFFFF;
}
.cmdb-wap{
	overflow: hidden;
	position: relative;
	margin-bottom: 15px;
}
.cmdb-wap a{
	display: block;
}
.cmdb-over{
	width: 100%;
	height: 100%;
	background-color: rgba(0,167,225,0);
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	transition: all ease-in-out .5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5;
	opacity: 0;
}
.cmdb-tab{
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
}
.cmdb-tabcel{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.cmdb-icon{
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	background-color: #FAFAFA;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	color: #004097;
	font-size: 16px;
}
.cmdb-tabcel h4{
	color: #FFFFFF;
	margin-top: 10px;
}
.cmdb-wap:hover .cmdb-over{
	opacity: 1;
	background-color: rgba(0,167,225,0.5);
}
#cmdb.row{
	margin-left: -8px;
	margin-right: -8px;
}
.item-cmdb-1,
.item-cmdb-2{
	padding-left: 8px;
	padding-right: 8px;
	position: relative;
	min-height: 1px;
	float: left;
}
.item-cmdb-1{
	width: 100%;
}
.item-cmdb-2{
	width: 100%;
}
@media (min-width: 768px) {
	.item-cmdb-1{
		width: 56%;
	}
	.item-cmdb-2{
		width: 44%;
	}
}

.full-job-list{
	position: relative;
}
.full-job-list ul li{
	border-bottom: 1px dotted #DDDDDD;
	padding: 10px 0;
}
.full-job-list ul li span{
	display: inline-block;
	float: right;
	color: #999999;
	font-size: 12px;
}
.full-job-list ul li i{
	margin-right: 10px;
	margin-left: 5px;
}

/** 2018.10.12 **/
.item-xin-pic,
.item-xin-you{
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	float: left;
	min-height: 1px;
}
.xin-fang-box{
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	padding-bottom: 10px;
	margin-top: 15px;
}
.xin-fang-top{
	color: #C50000;
	font-size: 16px;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	padding-left: 10px;
	background-color: #efefef;
	overflow: hidden;
	border-bottom: 1px solid #e0e0e0;
}
.xin-fang-top span{
	display: inline-block;
	float: right;
	color: #666;
	padding-right: 10px;
	font-weight: normal;
	font-size: 15px;
}
.xin-fang-tab{
	width: 96%;
	margin: 0 auto;
	border: 1px dashed #b6ded5;
	margin-top: 10px;
}
.xin-fang-tab ul li{
	height: 36px;
	line-height: 36px;
	font-size: 14px;
	color: #444444;
}
.xin-fang-tab ul li span{
	display: inline-block;
	height: 36px;
	line-height: 36px;
	float: left;
	text-align: center;
}
.xin-fang-tab ul li span.mianji{
	width: 22%;
	border-right: 1px dashed #b6ded5;
}
.xin-fang-tab ul li span.leixin{
	width: 22%;
	border-right: 1px dashed #b6ded5;
}
.xin-fang-tab ul li span.dichi{
	width: 56%;
}
.xin-fang-tab ul li.fang{
	border-top: 1px dashed #b6ded5;
	color: #09F;;
}
.fang-intro{
	color: #000000;
	font-size: 12px;
	line-height: 2;
	width: 96%;
	padding: 5px 0;
	margin: 0 auto;
}
.fang-more{
	border-top: 1px dashed #b6ded5;
	width: 96%;
	margin: 0 auto;
	line-height: 28px;
	padding-top: 10px;
}
.fang-more a{
	display: inline-block;
	color: #FFFFFF;
	background-color: #32a1e8;
	padding: 0 15px;
	font-size: 12px;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
	.item-xin-pic{
		width: 40%;
	}
	.item-xin-you{
		width: 60%;
	}
	.xin-fang-box{
		margin-top: 0;
	}
}
@media (min-width: 1200px) {
	.item-xin-pic{
		width: 30%;
	}
	.item-xin-you{
		width: 70%;
	}

}
/*---蔡新增微调--*/
.top_zone{
	width:100%;
	min-width:1200px;
	overflow:hidden;
	height:40px;
	line-height:40px;
	/* border-bottom:1px solid #ccc; */
}
#top_zone1{
	background:#f9f9f9;
}
#top_zone2{
	background:#000;
	color:#ccc;
}
#top_l a{
	/*用于多城市链接*/
	margin-left:10px;
}
#top_zone2 a{
	color: #ccc;
}
#top_link{
	margin-left: 20px;
}
#top_link a{
	margin-left:10px;
	line-height:42px;
}
#top_link a i{
	font-size:18px;
	margin-right:10px;
}
#footer_lxxx img{
	max-width:25px;
	height:auto;
	display:block;
}
#footer_lxxx tr td{
	padding-bottom:10px;
}
/*---分页--*/
.pagination{
	padding: 20px 0;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 15px;
	width:100%;
	overflow: hidden;
}

.pagination a{
	display:inline-block;
	*display:inline;
	*zoom:1;
	padding:3px 10px;
	border:1px solid #ccc;
	margin:0 2px;
}
.pagination .current{
	background:#52246f;
	border-color:#52246f;
	color:#FFF;
	font-weight:700;
}
.pro-relate {
    color: #52246f;
    font-size: 24px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.owl-dots{
	margin-top:30px;
}
.owl-pro-inner .owl-controls .owl-nav div{
	width:30px;
	height:30px;
	padding:0;
	line-height:30px;
	background:#333;
}
.maplist dl{
	padding-bottom:20px;
	margin-bottom:20px;
	border-bottom:1px solid #ccc;
}
.maplist dl dt{
	display:block;
	line-height:30px;
	background:#f0f0f0;
	font-size:18px;
	text-indent:25px;
	font-weight:normal;
}
.maplist dl dd{
	margin-top:20px;
	padding-left:30px;
}
.maplist dl dd a{
	margin-right:30px;
}
.owl-inner-titles{
	margin-top:10px;
	text-align:center;
}
.downloadlist li a{
	display: block;
}
.downloadlist li i{
	margin-right: 10px;
}
.downloadlist li:hover{
	background: #f0f0f0;
}
.downloadlist li:hover .badge{
	background: #52246f;
}
.about-pic img{
	max-width: 100%;
	height: auto;
	display: block;
}
footer #footer_lxxx img{
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.shangxiapian{
	padding-top:20px;
	margin-top:20px;
	border-top:1px dashed #c8c8c8;
}
.shangxiapian li{
	line-height:30px;
}
.copyright a{
  color: #ccc;
}
.biaoge{
	width:100%;
	border-collapse:collapse;
}
.biaoge tr td,.biaoge tr th{
	border:#ccc solid 1px;
    padding:10px 0 10px 15px;
}
.biaoge tr th,.biaoge .down_b{
	background:#fff;
}
.biaoge .fa-caret-right{
	margin-right:10px;
}
.biaoge .fa-cloud-download{
	font-size:30px;
	margin:0px auto;
	display:block;
	text-align:center;
	margin-left:-15px;
}
.mai-btn{
	margin-top:20px;
	background:#52246f;
	padding:15px 40px;
	font-size:16px;
}
.mai-btn i{
	margin-right:10px;
	font-size:20px;
}
.mai-btn:hover{
	background:#000;
}
.xiazai{
	overflow:hidden;
	border:1px solid #ccc;
	padding-top:10px;
	padding-bottom:10px;
	margin-bottom:15px;
	line-height:40px;
	padding-left:30px;
}
.xiazai:hover{
	border-color:#52246f;
}
.xiazai_lmmc{
	color:#777;
	border-right:1px solid #eee;
}
.xiazai_time .time{
	display:inline-block;
	*display:inline;
	*zoom:1;
	padding-right:70px;
	background:url(/web/pic/down.jpg) right center no-repeat;
}
.download_search{
	padding-bottom:0;
}
.download_search .form-group{
	margin-bottom:0;
}
.download_search .btn{
	display:block;
	width:100%;
	text-align:center;
	background:#52246f;
}
.more_01{
	display:inline-block;
	*display:inline;
	*zoom:1;
	height:45px;
	line-height:45px;
	border:1px solid #ccc;
	padding:0 35px;
	transition:0.6s;
}
.more_01:hover{
	border-color:#52246f;
	background:#52246f;
	color:#fff;
}

.tulist_02{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.tulist_02 li{
	width: 33.333333%;
	padding: 5px;
}
.tulist_02 li a{
	display: block;
}
.tulist_02 li .pic{
	height: auto;
	overflow: hidden;
	border: 1px solid #ddd;
}
.tulist_02 li img{
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.tulist_02 li .title{
	height: auto;
	overflow: hidden;
	text-align: center;
	line-height: 24px;
	margin-top: 8px;
}

@media (min-width: 768px) {
	.xiazai_lmmc{
		text-align:center;
	}
	.xiazai{
		line-height:25px;
	}
	.tulist_02 li{
		width: 25%;
	}
}
@media (min-width: 992px) {
	.tulist_02 li{
		width: 20%;
	}
}
@media (min-width: 1200px) {
.tulist_02 li{
		width: 16.666666%;
	}
}
